This resource address returns the configuration properties of the alert
specified by the mandatory uri
parameter from the specified database.
Upon success, MarkLogic Server returns status code 200 (OK). The response body contains the requested data. If the payload is malformed, a status code of 400 (Bad Request) is returned. A status code of 401 (Unauthorized) is returned if the user does not have the necessary privileges.
manage-user
role, or the following
privilege: http://marklogic.com/xdmp/privileges/manage
The structure of the output returned from this REST API is as follows:
id
uri
name
description
triggers
This is a complex structure with the following children:
trigger
domains
This is a complex structure with the following children:
domain
options
This is a complex structure with the following children:
option
actions
This is a complex structure with the following children:
action
curl -X GET --anyauth -u admin:admin --header "Content-Type:application/json" \ http://localhost:8002/manage/v2/databases/Documents/alert/configs/properties?uri=my-alert-config ==> Returns the properties of the "my-alert-config" alert for the Documents database.
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.